home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / libgplus.5 / libgplus / test-ins / a.cc next >
Encoding:
C/C++ Source or Header  |  1991-10-05  |  119 b   |  11 lines

  1. #include <stream.h>
  2. #include <String.h>
  3.  
  4. String s1 = "Hello";
  5. String s2 = " world!\n";
  6.  
  7. main()
  8. {
  9.     cout << s1 << s2 ;
  10. }
  11.